class Solution { public boolean wordBreak(String s, List<String> wordDict) { return isContain(s, wordDict); } Map<String,Boolean> map = new HashMap<>( ...
分类:
其他好文 时间:
2021-03-17 14:50:42
阅读次数:
0
yml文件 基本用法 //传统xml配置: <server> <port>8081<port> </server> //yaml配置: server: prot: 8080 //行内写法 student: {name: qinjiang,age: 3} //数组( List、set )用 - 值表示 ...
分类:
编程语言 时间:
2021-03-17 14:48:05
阅读次数:
0
1. Install git yum install git 2. Install Vundle.vim 2.1 mkdir ~/.vim/bundle 2.2 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vund ...
分类:
系统相关 时间:
2021-03-17 14:46:30
阅读次数:
0
torch.sum()对输入的tensor数据的某一维度求和,一共两种用法 1.torch.sum(input, dtype=None) 2.torch.sum(input, list: dim, bool: keepdim=False, dtype=None) → Tensor input:输入一 ...
分类:
其他好文 时间:
2021-03-17 14:40:09
阅读次数:
0
57. 插入区间 题目链接 枚举 枚举每个区间,判断该区间与需要插入的区间是否相交 若不相交,且比需要插入的区间小,那么直接放入List中 若不相交,但比需要插入的区间大,那么先把区间插入,再把这个区间放入List 若相交,则把这个区间和需要插入的区间合并,继续枚举 class Solution { ...
分类:
其他好文 时间:
2021-03-17 14:30:31
阅读次数:
0
大家好,我是肖邦,这是我的第 10 篇原创文章。 在 Linux 系统使用中,作为一个管理员,我希望能查找系统中所有的大小超过 200M 文件,查看近 7 天系统中哪些文件被修改过,找出所有子目录中的可执行文件,这些任务需求 find 命令都可以轻松胜任。 在 Linux 系统文件中常用的属性可以分 ...
分类:
系统相关 时间:
2021-03-17 14:23:24
阅读次数:
0
问题原因在于官方在2020年12月2日正式将CentOS 6相关的软件源移出了官方源,随之而来逐级镜像也会陆续将其删除。 解决方案: curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliy ...
分类:
Web程序 时间:
2021-03-17 14:13:50
阅读次数:
0
Linux下有三个命令:ls、grep、wc。通过这三个命令的组合可以统计目录下文件及文件夹的个数。 1、ls -l | grep "-" | wc -l:统计当前目录下文件的个数(不包括目录) 2、ls -lR| grep "-" | wc -l:统计当前目录下文件的个数(包括目录) 3、ls - ...
分类:
系统相关 时间:
2021-03-17 14:13:37
阅读次数:
0
正则表达式 基础正则表达式、 grep结合正则实现精确匹配 元字符匹配 . # 匹配换行符以外的任意一个字符 正则表达式“.”只能匹配一个字符,但可以是任意字符 [ ]# 匹配中括号中任意一个字符,注意只能匹配一个字符 次数匹配(字符数量) * # 前一个字符匹配任意多次 如果正则表达式写成“aa* ...
分类:
系统相关 时间:
2021-03-17 14:06:06
阅读次数:
0
zsh + oh my zsh 使用 切换bash 切换bash chsh -s /bin/bash 切换zsh chsh -s /bin/zsh 安装 oh my zsh ! 插件地址 https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins 主 ...
分类:
其他好文 时间:
2021-03-16 13:54:23
阅读次数:
0